home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / GrafSys C lib⁄int / GrafSys C.Int next >
Encoding:
Text File  |  1993-08-02  |  488 b   |  18 lines  |  [TEXT/PJMM]

  1. unit GrafSysC;
  2.  
  3. (* interface to the C/Assembler routines *)
  4. (* for fast off-screen bitmap access     *)
  5.  
  6. interface
  7.  
  8. { pascal long FastPixErase ( PixMapHandle pixH, short color) }
  9.     procedure FastPixErase (pixH: PixMapHandle; color: integer);
  10.  
  11. { pascal void FillTriangle (Point p1, Point p2, Point p3, int theColor, Boolean forceQD); }
  12.     procedure FillTriangle (p1: Point; p2: point; p3: Point; theColor: Integer; useQD: Boolean);
  13.  
  14. implementation
  15.  
  16. { all implementation in C/Assembler }
  17.  
  18. end.